execute linux command in python

28

import os
cmd = 'your command here'
os.system(cmd)

Comments

Submit
0 Comments